home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / other / ffs.c < prev    next >
C/C++ Source or Header  |  1990-07-19  |  209b  |  17 lines

  1. #include <lib.h>
  2. /*  ffs(3)
  3.  *
  4.  *  Author: Terrence W. Holm          Sep. 1988
  5.  */
  6.  
  7. int ffs(word)
  8. int word;
  9. {
  10.   int i;
  11.  
  12.   if (word == 0) return(0);
  13.  
  14.   for (i = 1;; ++i, word >>= 1)
  15.     if (word & 1) return(i);
  16. }
  17.